a.navbar-text, .navbar-text {
    color: #000;
}

#dropdownMenu1 {
    border-color: #000;
}

.slogn {
    top: 40%;
    color: #000;
}

.produc{
    position: relative;
}
.produc:hover .preinfo{
    display: inline-block;
}
.preinfo{
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 16% 30px 14%;
    font-size: 16px;
    color: #f8f8f8;
    background-color: rgba(0, 0, 0, 0.56);
}
.preinfo h4{
    padding-bottom: 6%;
    font-size: 22px;
}

.preinfo p{
    max-height: 60%;
    overflow: hidden;
}
.prlist li img{
    display: inline-block;
    width:100%;
}

.viewinfo span{
    display: inline-block;
    margin-top: 26px;
    padding: 10px 30px;
    cursor: pointer;
    background-color: #e43838;
}
.viewinfo span em{
    font-style: normal;
    font-size: 16px;
}

.items img{
    width: 100%;
    vertical-align: top;
}

.pp{
    float: left;
    width: 33.33333333%;
}
.pading{
    padding: 0 15px;
}

.dfd{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.vbvv{
    height: 65px;
}


.abc{
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 49px;
    height: 49px;
    margin-top: -25px;
    font-size: 0;
    cursor: pointer;
}
.abc.prev {
    left: -80px;
    background: url(../images/shutter_prevBtn.png) no-repeat 0 -49px;
}
.abc.next {
    right: -80px;
    background: url(../images/shutter_nextBtn.png) no-repeat 0 -49px;
}
[v-cloak]{
    display: none;
}
.search-wrap {
    width: 400px;
    height: 70px;
    position: absolute;
    top: 90px;
    right: 200px;
    z-index: 1000;
    /* background-color: #fff; */
}
.search {
    height: 38px;
}
.search span {
    cursor: pointer;
    width: 50px;
    height: 38px;
    background-color: red;
    display: inline-block;
    margin-top: 0;
    float: right;
}
/* .search .file {
    width: 50px;
    height: 38px;
    display: inline-block;
    font-style:normal;
    cursor: pointer;
    background-color: #e43838;
    color: #fff;
    float: left;
    line-height: 38px;
    text-align: center;
} */
.file {
    position: relative;
    text-decoration: none;
    text-indent: 0;
    line-height: 20px;
    width: 50px;
    height: 38px;
    display: inline-block;
    cursor: pointer;
    background-color: #e43838;
    color: #fff;
    float: left;
    line-height: 38px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
}
.file input {
    position: absolute;
    font-size: 100px;
    width: 50px;
    height: 38px;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.search .input {
    width: 300px;
    height: 38px;
    font-size: 18px;
    outline: none;
    text-indent: 10px;
    border: none;
}
.search img {
    width: 20px;
    margin: 8px 0 0 13px;
}

.search-wrap .ul {
    width: 300px;
    box-sizing: border-box;
    margin: 1px 0 0 50px;
    max-height: 200px;
    overflow-y: scroll;
}
.search-wrap .ul .li {
    height: 30px;
    line-height: 30px;
    background-color: #eee;
    text-indent: 15px;
}
.search-wrap .ul .li:hover {
    background-color: #f8f8f8;
}
.choose {
    height: 30px;
    line-height: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 14px;
}

.choose a {
    color: #000;
    width: 140px;
    display: inline-block;
    margin-left: 85px;
    text-align: right;
    font-size: 12px;
}
.choose a:hover {
    text-decoration: none;
}
.choose span {
    margin-right: 40px;
    color: #e43838;
}
.choose label {
    cursor: pointer;
    margin: 0  0 0 0;
    line-height: 28px;
    display: inline-block;
    width: 70px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    /* background-color: #fff; */
    color: #e43838;
    font-weight: 400;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.choose label:nth-child(1) {
    margin-left: 50px;
}
.choose .active {
    background-color: #e43838;
    color: #fff;
    font-weight: 600;
}
.choose input {
    vertical-align: middle;
    float: left;
    margin-right: 5px;
}

input {
    outline: none !important;
}
/* radio美化 */
input[type=radio]{
    /*去除浏览器默认样式*/
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /*自定义样式*/
    width: 20px;
    height: 20px;
    border:1px solid red;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    outline: none;
    position: relative;
}
input[type=radio]::after{
   content: '';
   display: block;
    width: 12px;
   height: 12px;
   background: red;
   border-radius: 12px;
   -webkit-border-radius: 12px;
   -moz-border-radius: 12px;
   position: absolute;
   top: 3px;
   left: 3px;
   transform: scale(0);
   -webkit-transform: scale(0);
   -moz-transform: scale(0);
   transition: all ease-in-out 300ms;
   -webkit-transition : all ease-in-out 300ms;
   -moz-transition : all ease-in-out 300ms;
   outline: none;
}
input[type=radio]:checked::after{
   transform: scale(1);
   -webkit-transform: scale(1);
   -moz-transform: scale(1);
   outline: none;
}